home *** CD-ROM | disk | FTP | other *** search
/ How to Get Online 1996 Spring / HOW2GON.ISO / mac / FTP / Robert's File Server v1. folder / Robert's File Server v1.10 / For Eudora 1.4.2 / Read Me! (v1.00) < prev    next >
Text File  |  1995-04-04  |  4KB  |  87 lines

  1. Robert's File Server read me
  2. ============================
  3.  
  4. version 1.00, april 1995
  5.  
  6. Robert's File Server (RFS) is an AppleScript (v1.00) for Eudora
  7. (v1.4.2). It takes a message as input (a la BART
  8. "mac@mac.archive.umich.edu") to send files automaticaly using
  9. Eudora's facilities, I'm using it within a UUPC setup, so I'm free to
  10. have as many userIDs I want, but it sould be easy to modify the
  11. script to work within another kind of setup.
  12.  
  13. I had to limitate my work to Eudora 1.4.2, my old Mac Plus doesn't
  14. like at all newer versions, and I only have AppleScript v1.0, so
  15. mofifications might be necessary to use it with differents versions.
  16.  
  17. The script will not run with another version of Eudora.
  18. -------------------------------------------------------
  19.  
  20. The only setup it require is to define few parameters in the script
  21. itself, and then save it as an Applet.
  22.  
  23. I usually launch it using cron for Macintosh, at specific times.
  24. Actually it run every hour for about a week without any crash.
  25.  
  26. The necessary settings are:
  27. ---------------------------
  28.  
  29. Setting the files and folder: "pubdir" is the root level fro the files
  30. you want to make available to anybody. "IndexFile" is your files list
  31. sent when the user put the word "index" in its message.
  32.  
  33. -> set pubdir to "Mac+:Fichiers:" -- the folder whare the files are
  34. -> set indexFile to {alias "Mac+:Fichiers:00index.txt"} -- the files list
  35.  
  36. Setting the mailboxes: as the localised versions of Eudora use names
  37. differents than "In", "Out" and "Trash" folder it is necessary to
  38. identify them correctly. Here I use a mailbox that I created to trash
  39. all the messages after they are processed. I trash them manually
  40. after checking them. The mailbox "formsMailbox" is used to store the
  41. "help" and "aide" texts. Thoses texts are placed in a message, then
  42. saved without any receipient and moved to this mailbox. RFS grab the
  43. body of those forms and paste it the the outgoing message. The field
  44. "Subject:" must contains the word "help" and "aide", RFS locate the
  45. message by looking at this field.
  46.  
  47. -> set inMailbox to "Entrée" -- the name of the incomming mailbox
  48. -> set trashMailbox to "Reçus et traités" -- the name of the trash mailbox
  49.                                           -- we want to use 
  50. -> set outMailbox to "Sortie" -- the name of the outgoing messages
  51. -> set formsMailbox to "Modèles" -- the name of our forms mailbox
  52.  
  53. Finally, the "sysop" address will be use to send Bcc of all errors
  54. messages, set it to "" if you don't want any. the "returnPath" must
  55. remain "", and "myType" is the default encoding for files
  56. attachments.
  57.  
  58. -> set sysop to "robert" -- who will get the Bcc of error reports if any
  59. -> set returnPath to "" as string -- initialize
  60. -> set myType to 2 -- 0 = AppleDouble, 2 = BinHex
  61.  
  62. Remember that the script does nothing with the mail itself, you have to
  63. setup Eudora to handle the mail in a way it will suit your needs. (i.e.
  64. mail attachment always as Mac documents, including signature, etc.)
  65.  
  66. To know more about the commands read the "rfs-help.txt" file. (or
  67. "rfs-aide.txt" for the french version). The script shouldn't be hard
  68. to understand for somebody who already use AppleScript. I'll be
  69. interested in knowing about improvements you  will certainly put in,
  70. as weel as geting copies of any version written for diffenents
  71. versions.
  72.  
  73. Robert's File Server 1.00 is freeware. Feel free to distribute it as
  74. you whish, as long as you give proper credits.
  75.  
  76. You can reach me at:
  77.  
  78. Robert Pellerin <robert@RP.CAM.ORG>
  79.  
  80. A working setup is available at: <file-server@RP.CAM.ORG>
  81.  
  82. Robert Pellerin
  83. 6270, bd Léger, app. 3
  84. Montréal-Nord, Qc   H1G 1L3
  85.  
  86. april 4, 1995
  87.